home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1271 / termglob.bas < prev    next >
BASIC Source File  |  1997-03-14  |  846b  |  32 lines

  1. ' Global Variables
  2. Option Explicit
  3. Global ThePort As Integer
  4. Global TheBaudCode As Integer
  5. Global TheDataBits As Integer
  6. Global TheParity As Integer
  7. Global TheStopBits As Integer
  8. Global BaudText(0 To 8) As String
  9. Global ParityText(0 To 7) As String
  10. Global OnLineFlag As Integer
  11. Global FatalFlag As Integer
  12. Global mioState As Integer
  13. Global xyState As Integer
  14. Global WaitingFor As Integer
  15. Global FirstXYstate As Integer
  16. Global LastPacket As Integer
  17. Global DebugLevel As Integer
  18. 'Global Constants
  19. Global Const NAK = &H15
  20. Global Const FILE_NAME = 1
  21. Global Const PHONE_NUMBER = 2
  22. Global Const Dial_1 = 21
  23. Global Const Dial_2 = 22
  24. Global Const Dial_3 = 23
  25. Global Const TX_XM = 1
  26. Global Const TX_YM = 2
  27. Global Const RX_XM = 3
  28. Global Const RX_YM = 4
  29. Global Const RUN_XY = 5
  30. Global Const XMODEM = 0
  31. Global Const YMODEM = 1
  32.